std::vector::emplace_back
From Cppreference
| template< class... Args >
void emplace_back( Args&&... args ); | (C++0x) | |
Inserts a new element to the end of the container. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments, as supplied to the function.
Contents |
Parameters
| args | - | arguments to forward to the constructor of the element |
Return value
(none)
Complexity
constant.
See also
| inserts elements to the end (public member function) | |